<?php if(function_exists('DIF_get_user_images')) {
	$test = DIF_get_user_images($user_id); //replace $user_id with the ID of the user you'd like to get the feed for

	if($test) {
		foreach($test as $image) {
			echo '<pre>';

			print_r($image);

			echo '</pre>';
		}
	}
} ?>